home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / amiga.free / diropus4.12b_gpl / dopus_disk / diskstrings.h < prev    next >
C/C++ Source or Header  |  2000-01-27  |  2KB  |  97 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #ifndef DISK_STRINGS
  32. #define DISK_STRINGS
  33.  
  34. enum {
  35.     STR_FORMAT_NAME,
  36.     STR_FORMAT_FFS,
  37.     STR_FORMAT_INTERNATIONAL,
  38.     STR_FORMAT_CACHING,
  39.     STR_FORMAT_TRASHCAN,
  40.     STR_FORMAT_VERIFY,
  41.     STR_FORMAT_FORMAT,
  42.     STR_FORMAT_QUICKFORMAT,
  43.     STR_FORMAT_EXIT,
  44.     STR_FORMAT_EMPTY,
  45.     STR_FORMAT_INFODISPLAY,
  46.     STR_FORMAT_FORMATTING,
  47.     STR_FORMAT_VERIFYING,
  48.     STR_FORMAT_INITIALISING,
  49.     STR_FORMAT_FORMATERROR,
  50.     STR_FORMAT_ERRORVERIFYING,
  51.     STR_FORMAT_VERIFYERROR,
  52.     STR_SUCCESS,
  53.     STR_FAILED_ERROR,
  54.     STR_MEMORY_ERROR,
  55.     STR_BITMAP_ERROR,
  56.     STR_DEVICE_ERROR,
  57.     STR_NODEVICE_ERROR,
  58.     STR_RETRY,
  59.     STR_NODISKPRESENT,
  60.     STR_DISKWRITEPROTECTED,
  61.     STR_ABORTED,
  62.     STR_FORMAT_MAKINGTRASHCAN,
  63.     STR_DISK_NOT_BLANK,
  64.     STR_PROCEED,
  65.     STR_CHECKING_DESTINATION,
  66.     STR_DISKCOPY_DISKCOPY,
  67.     STR_DISKCOPY_FROM,
  68.     STR_DISKCOPY_TO,
  69.     STR_DISKCOPY_INFODISPLAY,
  70.     STR_DISKCOPY_NODISK,
  71.     STR_CHECKING_DISKS,
  72.     STR_DISKCOPY_READING,
  73.     STR_DISKCOPY_WRITING,
  74.     STR_DISKCOPY_READERROR,
  75.     STR_DISKCOPY_WRITEERROR,
  76.     STR_DISKCOPY_INSERTSOURCE,
  77.     STR_DISKCOPY_INSERTDEST,
  78.     STR_INSTALL_INSTALL,
  79.     STR_INSTALL_NOBOOT,
  80.     STR_INSTALL_NOINFO,
  81.     STR_INSTALL_NOTBOOTABLE,
  82.     STR_INSTALL_NORMAL,
  83.     STR_INSTALL_NONSTANDARD,
  84.     STR_INSTALL_ERRORWRITING,
  85.     STR_INVALID_DISK,
  86.     STR_INSTALL_INSTALLINGDISK,
  87.     STR_CANCEL,
  88.     STR_BUMP_NAMES,
  89.     STR_BUMPING_NAME,
  90.     STR_DISKCOPY_CHECK,
  91.  
  92.     STR_STRING_COUNT};
  93.  
  94. extern char **string_table;
  95.  
  96. #endif
  97.